home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / BKISSSRC.ZIP / CREDITS / MAKEFILE < prev    next >
Encoding:
Text File  |  1994-02-13  |  1.7 KB  |  60 lines

  1. # makefile MAKE V2.0 or higher
  2. .autodepend
  3.  
  4. # to enable debugging information, set "DEBUG" to "yes"
  5. DEBUG = no
  6.  
  7. # define all object files that make up the executable
  8. OBJS = credits.obj bigheart.obj heartpal.obj fontset2.obj tinyhart.obj
  9.  
  10. ##############################################################################
  11.  
  12. !if ($(DEBUG) == yes)
  13. TLINKDEBUG = /v
  14. !endif
  15.  
  16. ##############################################################################
  17.  
  18. .asm.obj:
  19.     tasm /ml /m /zi $<
  20.  
  21. ##############################################################################
  22.  
  23. credits.exe:    $(OBJS) makefile
  24.         tlink /x $(TLINKDEBUG) @&&|
  25. $(OBJS)
  26. credits.exe
  27. credits.map
  28.  
  29. |
  30.         !if ($(DEBUG) != yes)
  31.         pklite credits
  32.         !endif
  33.  
  34. ##############################################################################
  35.  
  36. bigheart.obj:   bigheart.pcx
  37.                 2obj p /d bigheart.pcx bigheart.obj BitmapSeg:BigHeartData
  38.  
  39. ##############################################################################
  40.  
  41. heartpal.obj:   bigheart.pcx
  42.                 2obj v /d bigheart.pcx heartpal.obj MyData:PaletteData
  43.  
  44. ##############################################################################
  45.  
  46. fontset2.jlf:   fontset2.pcx fontset2.cfg
  47.                 pcx2fnt fontset2
  48.  
  49. ##############################################################################
  50.  
  51. fontset2.obj:   fontset2.jlf
  52.                 2obj b fontset2.jlf MyData:FontData
  53.  
  54. ##############################################################################
  55.  
  56. tinyhart.obj:   tinyhart.pcx
  57.                 2obj p /d tinyhart.pcx tinyhart.obj MyData:TinyHeartData
  58.  
  59. ##############################################################################
  60.